home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-25 | 441 b | 26 lines | [TEXT/MSWD] |
- n-note-to-rest which rhythm-list
- &optional (type 'ratio)
-
-
- converts lengths equal lengths in which-list into
- rest-notes
-
-
- (n-note-to-rest '(1/2 1/4)
- '(1/1 1/2 1/1 1/4 1/8 1/8))
- ->(1/1 -1/2 1/1 -1/4 1/8 1/8)
-
- with ticks you have to use optional type
- 'ticks
-
- (n-note-to-rest '(120)
- '(120 240 120 360) 'ticks)
- ->(-120 240 -120 360)
-
- also works the other way around.
-
-
- (n-note-to-rest '(-120)
- '(-120 240 -120 360) 'ticks)
- ->(120 240 120 360)
-